HTML - tags - hr tag

revision:


Content

"hr" tag : defines a break in a page syntax some examples


"hr" tag : defines a break in a page

top

The <hr> tag defines a thematic break in an HTML page (e.g. a shift of topic). It is most often displayed as a horizontal rule that is used to separate content (or define a change) in an HTML page.

Attributes: the <hr> element supports the global attributes and event attributes.


Syntax

top

<hr>


some examples

top

HTML is the standard markup language for creating Web pages. HTML describes the structure of a Web page, and consists of a series of elements. HTML elements tell the browser how to display the content.


CSS is a language that describes how HTML elements are to be displayed on screen, paper, or in other media. CSS saves a lot of work, because it can control the layout of multiple web pages all at once.


JavaScript is the programming language of HTML and the Web. JavaScript can change HTML content and attribute values. JavaScript can change CSS. JavaScript can hide and show HTML elements, and more.

Codes:

                <p class="spec">HTML is the standard markup language for creating Web pages. 
                HTML describes the structure of a Web page, and consists of a series of elements. 
                HTML elements tell the browser how to display the content.</p>
                    <hr>
                <p class="spec">CSS is a language that describes how HTML elements are to be displayed on 
                    screen, paper, or in other media. CSS saves a lot of work, because it can control the layout 
                    of multiple web pages all at once.</p>
                <hr>
                <p class="spec">JavaScript is the programming language of HTML and the Web. 
                JavaScript can change HTML content and attribute values. JavaScript can change CSS. 
                JavaScript can hide and show HTML elements, and more.</p>
                

This is some text. This is some text. This is some text.


This is some text. This is some text. This is some text.

Codes:

                    <p class="spec">This is some text. This is some text. This is some text.</p>
                    <hr style="margin-left:5vw; width:50%;text-align:left;">
                    <p class="spec">This is some text. This is some text. This is some text.</p>